DELETE
/
contacts
/
{id}
cURL
curl --request DELETE \
  --url https://app.masivo.ai/api/storefront/v1/contacts/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-account-id: <x-account-id>'
{
  "data": "ok"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-account-id
string<uuid>
required

Your account ID

Path Parameters

id
string<uuid>
required

Contact unique identifier

Response

Contact successfully deleted

data
string
Example:

"ok"